home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 9 / FM Towns Free Software Collection 9.iso / taropyon / silib / inc / sitypes.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-16  |  553 b   |  33 lines

  1. #ifndef    _SITYPES_H
  2. #define    _SITYPES_H
  3.  
  4. #ifdef    __HIGHC__
  5. #    pragma    Off(Char_default_unsigned)
  6. #endif
  7.  
  8. #ifdef    __HIGHC__
  9. #    ifndef _SIZE_T_DEFINED
  10. #        define _SIZE_T_DEFINED
  11. typedef unsigned int size_t;
  12. #    endif
  13. #endif
  14.  
  15. typedef    void *    PTR_T;
  16.  
  17. #define    NORMAL    (0)
  18. #define    ERR        (-1)
  19. #define    TRUE    (1)
  20. #define    FALSE    (0)
  21. #define    ON        (1)
  22. #define    OFF        (0)
  23. #define    LOOP    for(;;)
  24.  
  25. #define    CONST    const
  26. #define    REG        register
  27. #define    UCHAR    unsigned char
  28. #define    UINT    unsigned int
  29. #define    SHORT    short int
  30. #define    USHORT    unsigned short
  31.  
  32. #endif
  33.